home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 June / Macworld (1999-06).dmg / Shareware World / Utilities / Compression / MacZip 1.03 final / README.TXT < prev   
Text File  |  1999-04-20  |  22KB  |  540 lines

  1. Macintosh Port of Info-Zip's Zip
  2. By Dirk Haase, d_haase@sitec.net
  3. Home page: www.sitec.net/maczip
  4. 27. March 1999
  5. ================================
  6.  
  7.  
  8. Some notes about this port:
  9. ===========================
  10.  
  11. MacZip requires at least System 7 and a Macintosh with a minimum of a 
  12. Motorola 68020 or PowerPC 601 processor. Other configurations may work
  13. but it is not tested at all.
  14.  
  15. The application is distributed as a fat binary with both regular 68K 
  16. and native PowerPC versions included.
  17.  
  18. Move the executable(s) somewhere--for example, drag it (or them) to your
  19. Applications folder.  For easy access, make an alias in the Launcher Control
  20. Panel or directly on your desktop.
  21. The GUI is very simple. It was not my intention to make a full-blown GUI,
  22. however I think it is comfortable enough to use it as regular tool.
  23.  
  24. This port supports also Apple-event.So you can install it in your
  25. WWW-Browser as a helper app.
  26.  
  27. For more Info about the contents of this package, take a look into
  28. the "macos/Contents" (or :macos:Contents) file. Some notes on how to
  29. rebuild the Macintosh applications can be found in INSTALL.
  30.  
  31.  
  32.  
  33. Usage:
  34. ------
  35.  
  36. Basically there are four ways to start MacZip:
  37.  
  38. a) Drag'n Drop
  39.    To extract an archive, drop an archive on MacZip.
  40.    To compress files drop a file, folder or volume on MacZip.
  41.    Note: You can not drop more than one item at the same time.
  42.    
  43.    
  44.  
  45. b) using the Dialog box (Menu: File -> Zip/Unzip):
  46.    * Compression (Zip):
  47.    - Go to "File -> Zip"and the "Zip Options" Dialog Box appears.
  48.    - Click on "Location of the compressed File"
  49.    - The "Select an archive" dialog box appears      
  50.         a) select a existing zip archive
  51.            -> Your files will be added to that zip archive.
  52.         b) select a folder and name your new zip archive
  53.            -> a new zip archive will be created with your files.
  54.    - Select one or more check boxes if you want.
  55.         see Zip.txt for more information.
  56.    - Click on "File or Folder to Compress"
  57.    - The "Select a File or Folder" dialog box appears      
  58.         a) select a file
  59.            -> This file will be compressed.
  60.         b) select a folder
  61.            -> the contents of the folder will be compressed.
  62.    - Click on "Start Unzip" to start the task.
  63.    
  64.   * Extraction (Unzip):
  65.    - Go to "File -> Unzip"and the "Unzip Options" Dialog Box appears.
  66.    - Click on "Location of the compressed File"
  67.    - The "Select an archive" dialog box appears      
  68.    - select a existing zip archive
  69.    - Select one or more check boxes if you want.
  70.         see Unzip.txt for more information.
  71.    - Click on "Location of the extracted Files"
  72.    - The "Select a Folder" dialog box appears      
  73.         a) select a file
  74.            -> This file will be compressed.
  75.         b) select a folder
  76.            -> the contents of the archive will be extracted 
  77.               into this folder.
  78.    - Click on "Start Unzip" to start the task.
  79.     
  80.      
  81.      
  82. c) Using the Command line (Menu: File->Command Line):
  83.    The zip & unzip tools are command line tools. So the behavior is exactly 
  84.    the same like the zip & unzip tools on unix or win. This means if you 
  85.    want zip some files you have to write a command line like this: 
  86.    "zip [switches] path_to_zip_archive path_to_files_folders"
  87.    
  88.    - Go to "File" and select "Command Line" and the "MacZip Entry box" 
  89.      Dialog Box appears.
  90.  
  91.    An example:
  92.  
  93.    a: your zip may be created at
  94.            Macintosh HD:applications:archive.zip
  95.  
  96.    b: your files may be found at
  97.            Macintosh HD:somewhere:my_folder_to_archive:*
  98.  
  99.    Note: At the end of the path there must be a filename or a wild card !
  100.    (see Footnote: 1 wild card, 2 Mac path names)
  101.    
  102.    So the command line should look like (one line!):
  103.  
  104.    zip "Macintosh HD:applications:archive.zip" "Macintosh HD:somewhere:my_folder_to_archive:*"
  105.    
  106.    - Click on "Enter" to start the task.
  107.  
  108.    Since you can not set a default folder you have to enter always a 
  109.    full qualified path names. Full-qualified path names are path names 
  110.    including the Volume name ! (see Footnote: 2 Mac path names)
  111.      
  112.      
  113.      
  114. d) Using Applescript:
  115.  
  116. There is only one additional event defined: "do_cmd". You can enter 
  117. every valid command line. The first word must be "zip" or "unzip" to
  118. select the action (compress or extraction).
  119.  
  120. See sample Applescript:
  121.  
  122.         tell application "MacZip (PPC)"
  123.             activate
  124.             with timeout of 90000 seconds
  125.                 do_cmd "zip -rjjN Volume:archive \"My Volume:*\" "
  126.             end timeout
  127.         end tell
  128.  
  129. This script opens MacZip, brings it to the foreground on the Mac, starts the zip 
  130. action with the command line: zip -rjjN Volume:archive "My Volume:*" .
  131.  
  132.  
  133.  
  134.  
  135. A short introduction is also available online:
  136. http://www.sitec.net/maczip/How-To-Do/  
  137.  
  138. It's possible to stop the run of Zip/Unzip with the well
  139. known shortcut [Command] + [.].
  140.  
  141.  
  142. ---------------------------------------------------------------------------
  143.  
  144. There are some Mac specific switches available.
  145. Zip Module:
  146.        -df    [MacOS   only]  Include  only  data fork  of  files
  147.               zipped into the archive.  Good for exporting  files
  148.               to  foreign operating systems.  Resource forks will
  149.               be ignored at all.
  150.  
  151.        -jj    [MacOS  only] record Full path (+ Volname). The com-
  152.               plete  path  including  volume  will  be stored. By
  153.               default the relative path will be stored.
  154.  
  155.        -S     Include system and hidden  files.  This  option  is
  156.               effective  on  some  systems only; it is ignored on
  157.               Unix.  On MacOS, this option includes finder invis-
  158.               ible files, which are ignored otherwise.
  159.  
  160. Unzip Module:
  161.        -E     [MacOS only] display contents of MacOS extra  field
  162.               during restore operation.
  163.  
  164.        -i     [MacOS only] ignore filenames stored in MacOS extra
  165.               fields.  Instead,  the  most  compatible   filename
  166.               stored in the generic part of the entry's header is
  167.               used.
  168.  
  169.        -J     [MacOS only] ignore MacOS extra fields.  All Macin-
  170.               tosh  specific  info  is  skipped.  Data fork   and
  171.               resource-fork are restored as separate files.
  172.  
  173.  
  174. Select [File]->[Get Help on Zip/Unzip] for a complete list 
  175. of switches.
  176.  
  177.  
  178.  
  179. Limitations / Problems:
  180. -----------------------
  181.  
  182.     - Aliases are not supported. I tried, but I got broken aliases
  183.       This port will silently ignore all aliases.
  184.       It's on my to-do list for future releases.
  185.  
  186.     - Zip needs much memory to compress many files:
  187.       You may need to increase the 'Preferred Size' in 'Get Info'.
  188.       Values of 12 Megabytes or more are possible
  189.  
  190.     - Unzip needs about 500 Kbytes of memory to unzip no matter
  191.       how many files were compressed and expanded.
  192.  
  193.     - and finally one big macintosh-related problem:
  194.       This port has one weak point: It's based on path names.
  195.       As you may be already know: Path names are not unique on a Mac !
  196.       The main reason is that an attempt to implement support exact saving of
  197.       the MacOS specific internal file structures would require a throughout
  198.       rewrite of major parts of shared code, probably sacrifying compatibility
  199.       with other systems.
  200.       I have no solution at the moment. The port will just warn you if you try
  201.       zip from / to a volume which has a duplicate name.
  202.       MacZip has problems to find the archive or the files.
  203.       My (Big) recommendation: Name all your volumes with a unique name and
  204.       MacZip will run without any problem.
  205.  
  206.  
  207. Known Bugs:
  208.  
  209.     - crypted files in a zip archive are sometimes corrupt:
  210.       I get an error message: invalid compressed data to inflate.
  211.       Appearance of this error is purely be chance:
  212.       I did a small test: Unzipping an archive containing 3589 files
  213.       56 files fails to unzip, so about 1.5%.
  214.       Root cause is completely unclear to me :(
  215.       
  216. I strongly recommend to test your archive (e.g.. unzip -t archive).
  217.  
  218.  
  219.  
  220.  
  221.  
  222. Zip Programs / Macintosh Extra-Data:
  223. -----------------------------------------
  224. A brief overview:
  225. Currently, as far as I know, there are 4 Zip Programs available 
  226. for the Macintosh platform.
  227. These programs build (of course) different variants of Zip Files:
  228.  
  229.     - Info-Zip's first Port of Zip. Ported by Johnny Lee
  230.       This Port is rather outdated and no longer supported (since 1992).
  231.       68K only. Only minimal Mac-info is stored (Creator/Type,
  232.       Finder attributes). Creator/Type: '????' / '????'
  233.       Until year 1998, Only Unzip 5.32 survived.
  234.  
  235.     - ZipIt by Tom Brown. This is Shareware and still supported I think.
  236.       ZipIt has a nice GUI, but I found it can't handle large Zip files
  237.       quite well. ZipIt compresses Macintosh files using the Mac Binary
  238.       format. So, transferring files to other platforms is not so easy.
  239.       Only minimal Mac-info is stored (Creator/Type, Finder attributes).
  240.       Mac filenames are changed to a most compatible filename.
  241.       Creator/Type: 'ZIP ' / 'ZIP '
  242.  
  243.     - PKZIP/mac v2.03/210d. This is Shareware.
  244.       This Zip implementation for the Mac can be found on ASI's web site
  245.       (http://www.asizip.com/products/products.htm).  The name of this
  246.       program is misleading, it is NOT a product from PKWARE.  AS last
  247.       release version is v2.03, and they also offer a newer beta version
  248.       PKZIP/mac 210d. But even the Beta version is rather outdated (1995).
  249.       Only minimal Mac-info is stored (Creator/Type, Finder attributes).
  250.       The Zipfile format looks like incompatible to other platforms.
  251.       (More details about the compatibility issue can be found in
  252.       proginfo/3rdparty.bug!). Type: 'PKz1'
  253.       Mac filenames are restored without any change.
  254.  
  255. and finally:
  256.     - Info-Zip's latest Port of Zip. MacZip 1.0. Ported by me :-)
  257.       It is supported (of course) and up to date. Full set of macintosh
  258.       info is stored: Creator/Type, Finder attributes, Finder comments,
  259.       MacOS 8.0 Folder settings, Icon/Folder Positions ...
  260.       Mac filenames are restored without any change.
  261.       Creator/Type: 'IZip' / 'ZIP '
  262.       
  263.  
  264. Compatibility of my port; Extraction:
  265.    - Archives from Info-Zip's first port (by Johnny Lee) are still compatible.
  266.    - Extraction of ZipIt archives are supported. This support is not 
  267.      complete: Filenames are correct but Directory names are sometimes mangled
  268.      to a dos compatible form. Segmented archives are not supported.
  269.    - PKZiP/mac archives files are extracted without resource-forks
  270.      and without any Finder info. I have no information about that zip format.
  271.  
  272. Compatibility of my port; Compression:
  273.    - My port supports only the new Info-Zip format
  274.      (introduced with this port). Therefore archives created by MacZip 1.0
  275.      (March 1999) must be extracted with this version or later releases 
  276.      of Info-ZIP's UnZip to restore the complete set of Macintosh attributes.
  277.  
  278. Note: This port is complete unrelated to the shareware ZipIt. Even more,
  279. handling of special Macintosh attributes is incompatible with ZipIt.
  280. This port (MacZip) may be used to extract archives created by ZipIt,
  281. but make sure that you get the result as you expected.
  282.  
  283.  
  284.  
  285. Macintosh Files; File Forks:
  286. ----------------------------
  287.  
  288. All Macintosh files comprise two forks, known as the data fork and the
  289. resource fork.  Unlike the bytes stored in the resource fork, the bytes in
  290. the data fork do not have to exhibit any particular internal structure.
  291. The application is responsible for interpreting the bytes in the data fork
  292. in whatever manner is appropriate. The bytes in the resource fork usually
  293. have a defined internal structure and contain data object like menus,
  294. dialog boxes, icons and pictures.
  295. Although all Macintosh files contain both a data fork and a resource fork,
  296. one or both of these forks may be empty.
  297.  
  298. MacZip stores datafork and resource-forks separately. The Zipfile Format
  299. does not allow to store two archive entries using exactly the same name.
  300. My solution is to modify the Path name of the resource-fork. All resource-fork
  301. names are prepended with a leading special directory named "XtraStuf.mac".
  302. So, when extracting on a Mac, you should never see this directory
  303. "XtraStuf.mac" on your *disk*.
  304.  
  305. On all foreign systems that support directories in filenames (e.g.: OS/2, Unix,
  306. DOS/Windows, VMS) you will get a directory "XtraStuf.mac" when extracting
  307. MacZip archives.
  308. You can delete the complete directory "XtraStuf.mac" since Mac resources
  309. do not make much sense outside the MacOS world.
  310.  
  311.  
  312.  
  313. Text encoding; Char sets of the Filenames:
  314. ----------------------------------------
  315.  
  316. The following information is only important if you plan to transfer
  317. archives across different platforms/language systems:
  318.  
  319. A typical Zip archive does not support different char sets. All filenames
  320. stored in the public area (= accessible by foreign systems other
  321. than MacOS) must be coded in the char set ISO-8859-1 (CP1252 in the Microsoft
  322. Windows world) or CP850 (DOSLatin1). The latter should only be used by
  323. Zip programs that mark the archive entries as "created under DOS".
  324. Apart from Macs, the commonly used platforms either support ISO-8859-1
  325. directly, or are compatible with it.
  326. To achieve maximum compatibility, MacZip convert filenames from the
  327. Mac OS Roman character set to ISO-8859-1 and vice versa.
  328. But not every char of the char set Mac Roman has their equivalent
  329. in ISO-8859-1. To make the mapping in most cases possible, I chose
  330. most similar chars or at least the MIDDLE DOT. 
  331.  
  332. Mac OS Roman character set is used for at least the following Mac OS
  333. localization's:
  334. U.S., British, Canadian French, French, Swiss French,
  335. German, Swiss German, Italian, Swiss Italian, Dutch,
  336. Swedish, Norwegian, Danish, Finnish, Spanish, Catalan,
  337. Portuguese, Brazilian, and the default International system.
  338.  
  339. In all Mac OS encoding's, character codes 0x00-0x7F are identical to
  340. ASCII, except that
  341.   - in Mac OS Japanese, yen sign replaces reverse solidus
  342.   - in Mac OS Arabic, Farsi, and Hebrew, some of the punctuation in this
  343.     range is treated as having strong left right directionality,
  344.     although the corresponding Unicode characters have neutral
  345.     directionality
  346. So, for best compatibility, confine filenames to the standard
  347. 7-bit ASCII character set.
  348.  
  349. If you generate a filename list of your archive (unzip -l), you will
  350. see the converted filenames. Your can also extract the archive with
  351. the switch '-i' (= ignore mac filenames), and test your result.
  352.  
  353. This Maczip port uses its own filename stored in the archive.
  354. At the moment, the filename will be not converted. However,
  355. I'm planning to add support for Unicode.
  356.  
  357. Currently, the following Mac OS encoding's are NOT supported:
  358. Japanese, ChineseTrad, Korean, Arabic, Hebrew, Greek, Cyrillic,
  359. Devanagari, Gurmukhi, Gujarati, Oriya, Bengali, Tamil, Telugu
  360. Kannada, Malayalam, Sinhalese, Burmese, Khmer, Thai, Laotian,
  361. Georgian, Armenian, ChineseSimp, Tibetan, Mongolian, Ethiopic,
  362. Vietnamese, ExtArabic and finally:
  363. Symbol - this is the encoding for the font named "Symbol". 
  364. Dingbats - this is the encoding for the font named "Zapf Dingbats".
  365. If you extract an archive coded with one of these char sets
  366. you will probably get filenames with funny characters. 
  367.  
  368. These problems apply only to filenames and NOT to the file
  369. content.
  370. of course: The content of the files will NEVER be converted !!
  371.  
  372.  
  373.  
  374. File-/Creator Type:
  375. -------------
  376.  
  377. This port uses the creator type 'IZip' and it is registered at Apple
  378. (since 08. March 1998). File types can not be registered any more.
  379. This port uses 'ZIP ' for Zip archive files.
  380. The creator 'IZip' type should be used for all future versions of 
  381. MacZip.
  382.  
  383.  
  384.  
  385. Hints for proper restoration of file time stamps:
  386. ------------------------------------------------
  387.  
  388. UnZip requires the host computer to have proper time zone information in
  389. order to handle certain tasks correctly (see unzip.doc).  To set the
  390. time zone on the Macintosh, go to the Map Control Panel and enter the
  391. correct number of hours (and, in a few locales, minutes) offset from
  392. Universal Time/Greenwich Mean Time.  For example, the US Pacific time zone
  393. is -8 hours from UTC/GMT during standard (winter) time and -7 hours from
  394. UTC/GMT during Daylight Savings Time.  The US Eastern time zone is -5 hours
  395. during the winter and -4 hours during the summer.
  396.  
  397. Discussion of Daylight Savings Time
  398. -----------------------------------
  399. The setting in the Date & Time control panel for Daylight Savings time 
  400. is a universal setting. That is, it assumes everybody in the world is 
  401. observing Daylight Savings time when its check box is selected.
  402.  
  403. If other areas of the world are not observing Daylight Savings time when 
  404. the check box is selected in the Date & Time control panel, then the Map 
  405. control panel will be off by an hour for all areas that are not recognizing
  406. Daylight Savings time.
  407.  
  408. Conversely, if you set the Map control panel to an area that does not observe
  409. Daylight Savings time and deselect/uncheck the check box for Daylight Savings 
  410. time in the Date & Time control panel, then time in all areas celebrating 
  411. Daylight Savings time will be off by an hour in the Map control panel.
  412.  
  413. Example:
  414.      In the case of Hawaiians, sometimes they are three hours
  415.      behind Pacific Standard Time (PST) and sometimes two hours
  416.      behind Pacific Daylight Time (PDT). The Map control panel
  417.      can only calculate differences between time zones relative
  418.      to Greenwich Mean Time (GMT). Hawaii will always show up as
  419.      three hours past the Pacific time zone and five hours past
  420.      the Central time zone.
  421.  
  422.      When Hawaiians are not observing Daylight Savings time, but
  423.      the rest of the country is, there is no combination of
  424.      settings in Map and Date & Time control panels which will
  425.      enable you to display Hawaiian local time correctly AND
  426.      concurrently display the correct time in other places that
  427.      do observe Daylight Savings time.
  428.  
  429.      The knowledge about which countries observe Daylight Savings
  430.      time and which do not is not built into the Map control
  431.      panel, so it does not allow for such a complex calculation.
  432.  
  433.      This same situation also occurs in other parts of the world
  434.      besides Hawaii. Phoenix, Arizona is an example of an area of
  435.      the U.S. which also does not observe Daylight Savings time.
  436.  
  437. Conclusion:
  438. MacZip only know the GMT and DST offsets of the current time, not 
  439. for the time in question.
  440.  
  441.  
  442. Projects & Packages:
  443. --------------------
  444.  
  445. A Note to version numbers: Version of MacZip is currently 1.00 and
  446. is based on the zip code version 2.3 and unzip code version 5.4.
  447. See About Box for current version and compiler build date.
  448.  
  449. Because of the amount of sources I splitted this port into
  450. several projects. See http://www.sitec.net/maczip for updates.
  451.  
  452. - core source parts:
  453.     unzxxx.zip
  454.     zipxxx.zip  
  455.       These archives contains the main parts of the port. You can build
  456.       libraries and a standalone App with Metrowerks standard console SIOUX.
  457.       They contain only sources, no executables.
  458.       These archives are exact copies of the standard Info-ZIP source
  459.       distributions; they were only repackaged under MacOS using MacZip,
  460.       with one minor addition: For those files that are stored in BinHex'ed
  461.       format in the Info-ZIP reference source archives, unpacked version
  462.       that are ready for use have been added.
  463.  
  464. - additional source part:
  465.     MacZipxxx.zip: contains all the GUI staff and the project files to
  466.       build the main-app.  Only sources of the GUI, no zip- or unzip code.
  467.       To build MacZip successfully you will need to also download the zip-
  468.       and unzip packages.
  469.  
  470. - executables:
  471.     MacZipxxxnc.hqx: contains only executables and 'README.TXT',
  472.                      This version is without en-/decryption support !
  473.     MacZipxxxc.hqx:  contains only executables and 'README.TXT',
  474.                      This version supports en-/decryption !
  475.  
  476. - encryption sources:
  477.     zcryptxx.zip: To build crypt versions of MacZip.
  478.     download from ftp://ftp.icce.rug.nl/infozip/ (and sub directories)
  479.  
  480. - documentation:
  481.     MacZipDocu.zip:    contains some further docus about the algorithm, 
  482.                     limits, info-zip's appnote and a How-to-do Webpage.
  483.  
  484.  
  485. Credits:
  486. --------
  487.  
  488. Macstuff.c and recurse.c: All the functions are from More Files.
  489. More Files fixes many of the broken or underfunctional
  490. parts of the file system. Thanks to Jim Luther.
  491. (see morefiles.doc)
  492.  
  493. MatWild.c: Originally C++ code written by JJS (jstrout@ucsd.edu).
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501. ---------------------------------------------------------------------------
  502. Footnotes:
  503.  
  504. 1. wild card:      
  505.     The '*' is a wild card and means 'all files'
  506.     Just in case you don't know wild cards:
  507.     '*' is a place holder for any character.
  508.     e.g.: 
  509.     "this*" matches with "this_file" or  "this_textfile" but it
  510.     don't matches with "only_this_file" or  "first_this_textfile"
  511.     "*this*" matches with "this_file" or  "this_textfile" AND
  512.     matches with "only_this_file" or  "first_this_textfile"
  513.  
  514.  
  515. 2. Mac pathnames:
  516. The following characteristics of Macintosh pathnames should be noted:
  517.  
  518.     A full pathname never begins with a colon, but must contain at 
  519.     least one colon. 
  520.     A partial pathname always begins with a colon separator except in 
  521.     the case where the file partial pathname is a simple file or 
  522.     directory name. 
  523.     Single trailing separator colons in full or partial pathnames are 
  524.     ignored except in the case of full pathnames to volumes. 
  525.     In full pathnames to volumes, the trailing separator colon is required. 
  526.     Consecutive separator colons can be used to ascend a level from a 
  527.     directory to its parent directory. Two consecutive separator colons 
  528.     will ascend one level, three consecutive separator colons will ascend 
  529.     two levels, and so on. Ascending can only occur from a directory; 
  530.     not a file. 
  531.  
  532.  
  533.  
  534.  
  535.  
  536. ---------------------------------------------------------------------------
  537.  
  538. Dirk Haase
  539. ==========
  540.